home *** CD-ROM | disk | FTP | other *** search
/ AI Game Programming Wisdom / AIGameProgrammingWisdom.iso / SourceCode / 06 General Architectures / 06 Rabin / gameobject.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2001-12-10  |  525 b   |  25 lines

  1. /* Copyright (C) Steve Rabin, 2001. 
  2.  * All rights reserved worldwide.
  3.  *
  4.  * This software is provided "as is" without express or implied
  5.  * warranties. You may freely copy and compile this source into
  6.  * applications you distribute provided that the copyright text
  7.  * below is included in the resulting source code, for example:
  8.  * "Portions Copyright (C) Steve Rabin, 2001"
  9.  */
  10.  
  11. #include "gameobject.h"
  12.  
  13.  
  14. GameObject::GameObject( objectID id )
  15. {
  16.     m_ID = id;
  17. }
  18.  
  19. GameObject::~GameObject( void )
  20. {
  21.  
  22. }
  23.  
  24.  
  25.